home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Revista CD Expert 8
/
Revista CD Expert nº 08 CD1.iso
/
Utilitarios
/
Programacao
/
FirstBasic Compiler
/
REGNAMES.INC
< prev
next >
Wrap
Text File
|
1996-07-31
|
1KB
|
26 lines
'┌───────────────────────────────────────────────────────────────────────────┐
'│ REGNAMES.INC │
'│ │
'│ This file is to be used as a $INCLUDE file whenever you use the CALL │
'│ INTERRUPT statement in your FirstBasic program. The file contains │
'│ named constants that represent the registers the CALL INTERRUPT statement │
'│ can manipulate. │
'│ │
'│ In order to use this file include it in your programs using the $INCLUDE │
'│ metastatement: │
'│ │
'│ $INCLUDE "REGNAMES.INC" │
'│ │
'└───────────────────────────────────────────────────────────────────────────┘
%FLAGS = 0
%AX = 1
%BX = 2
%CX = 3
%DX = 4
%SI = 5
%DI = 6
%BP = 7
%DS = 8
%ES = 9